home *** CD-ROM | disk | FTP | other *** search
- ; BOUNCING BALL
- ; Cyber Control motion control
- ; demonstration by Dann Parks
- ; Copyright 1989 Antic Publishing, Inc.
- ;_______________________________________________________________________
- new:; This section sets up the basics.
- view solid:draft:; Boosting the ambient light
- cam1 20,20,0:; helps define the sphere
- zoom 175:perspec 500:ambient 2:; against the background.
- rstart "A:\BOUNCE",M
- ;-----------------------------------------------------------------------
- sph3 ball,14:; This builds the ball, colors it,
- group a:clrgrp:select ball:scale 50:; and makes it the right size.
- ;-----------------------------------------------------------------------
- cube table,7:; The table is built from a cube
- group b:clrgrp:select table:; scaled vertically (with the loop)
- for squish=1 to 5:; to a thin slab and moved down
- axisscale 110,110,50:; into position.
- next squish
- xlate 0,0,-1500
- ;-----------------------------------------------------------------------
- cube mkr,7:; This section makes a small marker
- group d:clrgrp:select mkr:; that is moved into position ready
- for shrink=1 to 4:; to be rotated. Changing the 2100
- scale 50:; to a lower number will will make
- next shrink:; the ball bounce lower.
- moveto 2100,0,0
- ;-----------------------------------------------------------------------
- for bounce=1 to 30:; This is the main loop.
- ; It selects the marker
- group d:select mkr:grpcent xpos,ypos,zpos:; and determins its
- height=zpos-1050:; Z-axis position.
- ; Subtracting 1050 from
- group a:clrgrp:select ball:; the Z position makes
- moveto 0,0,height:; the ball bounce in the
- ; center of the 3D world
- group c:select ball,table:superview:record:; rather that start at
- ; center and bounce up.
- group d:select mkr:rotate 0,-6,0
- ; The ball is selected
- next bounce:; and moved to it's new
- ; position and recorded.
- ; The marker is then
- ; rotated 6 degrees to
- ; a new position.
- ; (6 degrees is 180
- ; degrees divided by
- ; 30 frames of animation.
- ;-----------------------------------------------------------------------
- rstop
- end
-